home *** CD-ROM | disk | FTP | other *** search
/ Aminet 1 (Walnut Creek) / Aminet - June 1993 [Walnut Creek].iso / aminet / os20 / util / ispell_3_3ljr.lha / ispell-3.3LJR / ISpell / Makefile < prev    next >
Makefile  |  1992-10-08  |  833b  |  34 lines

  1. # Makefile for Amiga ISpell with ARexx Server Mode
  2. #
  3. # Set up for SAS/C v6.0
  4. #
  5. # Last Update: Loren J. Rittle  Sat Sep 26 11:54:23 1992
  6.  
  7. all: ispell buildhash icombine ispell.hash
  8.  
  9. clean:
  10.     delete quiet \#?.bak \#?.o \#?.lnk \#?.cnt \#?.stat ispell buildhash \
  11.         icombine ispell.hash
  12.  
  13. CFLAGS = DEFINE=CAPITALIZE NODEBUG CPU=ANY DATA=FAR MCCONS UNSCHAR
  14.  
  15. LNFLAGS = NODEBUG SMALLCODE SMALLDATA LINK
  16.  
  17. OBJS = ispell.o amiga.o good.o lookup.o hash.o tree.o xgets.o \
  18.        regex.o local.o minrexx.o
  19.  
  20. ispell.hash: buildhash $(DDICT)
  21.     buildhash $(DDICT)
  22.  
  23. ispell: $(OBJS)
  24.     sc $(LNFLAGS) to ispell from $(OBJS) lib:rexxvars.o
  25.  
  26. buildhash: buildhash.o hash.o
  27.     sc $(LNFLAGS) to buildhash from buildhash.o hash.o
  28.  
  29. icombine: icombine.o
  30.     sc $(LNFLAGS) to icombine from icombine.o
  31.  
  32. buildhash.o: buildhash.c
  33.     sc $(CFLAGS) DEFINE=BUILDHASH buildhash.c
  34.